home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
glass
/
glass.lha
/
GLASS
/
dtm
/
tmcode.ht
< prev
next >
Wrap
Text File
|
1991-06-18
|
742b
|
35 lines
.. file: tmcode.ht
/* file: tmcode.h
template file: tmcode.ht
datastructure file: ${dsfilename}
tm version: $(tmvers) ($(tmdate))
*/
.insert dtmconfig.t
typedef double fnum;
typedef int inum;
typedef short int bool;
#define fnumNIL doubleNIL
#define inumNIL intNIL
#define boolNIL (bool)0
/* recursive freeing routines for basic types */
#define rfre_fnum(s)
#define rfre_inum(s)
#define rfre_bool(s)
/* rdup routines for basic types */
#define rdup_inum(n) (n)
#define rdup_fnum(n) (n)
#define rdup_bool(b) (b)
#define rdup_string(s) new_string(s)
#define fscan_fnum fscan_double
#define fscan_inum fscan_int
#define fprint_inum fprint_int
#define fprint_fnum fprint_double
.include $(libpath)$(pathsep)calu.ht